home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / Crypt / Rc4.php < prev    next >
PHP Script  |  2004-03-24  |  4KB  |  152 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2003 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Dave Mertens <dmertens@zyprexia.com>                        |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: Rc4.php,v 1.6 2003/10/04 16:39:32 zyprexia Exp $
  20.  
  21.  
  22. /**
  23. * RC4 stream cipher routines implementation
  24. *
  25. * in PHP4 based on code written by Damien Miller <djm@mindrot.org>
  26. *
  27. * Usage:
  28. * $key = "pear";
  29. * $message = "PEAR rulez!";
  30. *
  31. * $rc4 = new Crypt_RC4;
  32. * $rc4->key($key);
  33. * echo "Original message: $message <br>\n";
  34. * $rc4->crypt($message);
  35. * echo "Encrypted message: $message <br>\n";
  36. * $rc4->decrypt($message);
  37. * echo "Decrypted message: $message <br>\n";
  38. *
  39. * @version $Revision: 1.6 $
  40. * @access public
  41. * @package Crypt
  42. * @author Dave Mertens <dmertens@zyprexia.com>
  43.  */
  44. class Crypt_RC4 {
  45.  
  46.     /**
  47.     * Real programmers...
  48.     * @var array
  49.     */
  50.     var $s= array();
  51.     /**
  52.     * Real programmers...
  53.     * @var array
  54.     */
  55.     var $i= 0;
  56.     /**
  57.     * Real programmers...
  58.     * @var array
  59.     */
  60.     var $j= 0;
  61.  
  62.     /**
  63.     * Key holder
  64.     * @var string
  65.     */
  66.     var $_key;
  67.  
  68.     /**
  69.     * Constructor
  70.     * Pass encryption key to key()
  71.     *
  72.     * @see    key() 
  73.     * @param  string key    - Key which will be used for encryption
  74.     * @return void
  75.     * @access public
  76.     */
  77.     function Crypt_RC4($key = null) {
  78.         if ($key != null) {
  79.             $this->setKey($key);
  80.         }
  81.     }
  82.  
  83.     function setKey($key) {
  84.         if (strlen($key) > 0)
  85.             $this->_key = $key;
  86.     }
  87.  
  88.     /**
  89.     * Assign encryption key to class
  90.     *
  91.     * @param  string key    - Key which will be used for encryption
  92.     * @return void
  93.     * @access public    
  94.     */
  95.     function key(&$key) {
  96.         $len= strlen($key);
  97.         for ($this->i = 0; $this->i < 256; $this->i++) {
  98.             $this->s[$this->i] = $this->i;
  99.         }
  100.  
  101.         $this->j = 0;
  102.         for ($this->i = 0; $this->i < 256; $this->i++) {
  103.             $this->j = ($this->j + $this->s[$this->i] + ord($key[$this->i % $len])) % 256;
  104.             $t = $this->s[$this->i];
  105.             $this->s[$this->i] = $this->s[$this->j];
  106.             $this->s[$this->j] = $t;
  107.         }
  108.         $this->i = $this->j = 0;
  109.     }
  110.  
  111.     /**
  112.     * Encrypt function
  113.     *
  114.     * @param  string paramstr     - string that will encrypted
  115.     * @return void
  116.     * @access public    
  117.     */
  118.     function crypt(&$paramstr) {
  119.  
  120.         //Init key for every call, Bugfix 22316
  121.         $this->key($this->_key);
  122.  
  123.         $len= strlen($paramstr);
  124.         for ($c= 0; $c < $len; $c++) {
  125.             $this->i = ($this->i + 1) % 256;
  126.             $this->j = ($this->j + $this->s[$this->i]) % 256;
  127.             $t = $this->s[$this->i];
  128.             $this->s[$this->i] = $this->s[$this->j];
  129.             $this->s[$this->j] = $t;
  130.  
  131.             $t = ($this->s[$this->i] + $this->s[$this->j]) % 256;
  132.  
  133.             $paramstr[$c] = chr(ord($paramstr[$c]) ^ $this->s[$t]);
  134.         }
  135.     }
  136.  
  137.     /**
  138.     * Decrypt function
  139.     *
  140.     * @param  string paramstr     - string that will decrypted
  141.     * @return void
  142.     * @access public    
  143.     */
  144.     function decrypt(&$paramstr) {
  145.         //Decrypt is exactly the same as encrypting the string. Reuse (en)crypt code
  146.         $this->crypt($paramstr);
  147.     }
  148.  
  149.  
  150. }    //end of RC4 class
  151. ?>
  152.